home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / frame121.zip / LINES.DOC < prev    next >
Text File  |  1990-05-06  |  1KB  |  35 lines

  1.                          
  2.                            <<<  LINES.DOC  >>>
  3.  
  4.   Lines.Doc was created in conjunction with FRAMES.DOC. I like it because
  5.   instead of typing LOCATE 1, 1: PRINT STRING(80, "-") to get a line
  6.   across my screen I now just call the routine as follows:       
  7.  
  8.                        CAll horizon(1, 20, 79, 155)
  9.  
  10.   or for a vertical line:
  11.    
  12.                        CALL vertical(11, 1, 80, 58)
  13.  
  14.   The sequence to call either vertical or horizontal lines is:
  15.  
  16.   CALL ###(Row,Column,Length,ASCII Character)
  17.         
  18.   ### = Specify VERTICAL or HORIZON
  19.  
  20.   Row = What Row to start the line on
  21.  
  22.   Column = What Colunm to start line at
  23.  
  24.   Length = How long do you want line to be
  25.  
  26.   ASCII Character = Any Valid ASCII Character (See FRAMES.BAS for examples)
  27.  
  28.   ## = Frame number to call ( 1 through 57 )
  29.  
  30.  
  31.            (See FRAMES.DOC for Information on making FRAMES)
  32.            
  33.                                                                 4/90 EPTING
  34.  
  35.